﻿
/* 主视觉区 */
.main-bg {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.main-content {
    width: 78%;
    margin: 0 auto;
    padding-top: 90px;
    text-align: center;
}

.main-title {
    font-family: 'Source Han Sans CN', sans-serif; /* 字体 */
    font-size: 60px;
    font-weight: 700;
    color: #1B1F31;
    line-height: 1.6;
}

    .main-title .blue {
        font-size: 48px; /* 字体大小 */
        color: #002F41; /* 备用颜色 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }


.main-rotate-row {
    margin: 8vh auto;
    display: flex;
    justify-content:space-between;
    gap:16px;
}

    .main-rotate-row img {
        width: 48vh;
        height: 38vh;
        border-radius: 12px;
        background: #e8f3fa;
        object-fit: contain;
        box-shadow: 0 2px 14px rgba(80,160,200,0.13);
    }

/* 弈绘2D 区 */
.feature-section {
    width: 74%;
    margin: 20vh auto;
    display: flex;
    justify-content: space-between;
}

.feature-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 10vh;
}

.feature-title {
    font-size: 48px;
    font-weight: 700;
    color: #002F41;
}
    .feature-title p {
        font-size: 24px;
        font-weight: 400;
        opacity: 0.6;
        margin-bottom: 3vh;
    }

.feature-desc {
    font-size: 18px;
    color: #002F41;
    text-align:left;
}


.feature-img {
    width: 85vh;
    min-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .feature-img img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 4px 18px rgba(36,169,255,0.12);
    }



/* 合作伙伴 区 */
.partner-section {
    width: 74%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items:center;
}

.partner-title {
    font-size: 48px;
    font-weight: 700;
    color: #1B1F31;
    margin-bottom: 4vh;
}

.partner-logos {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 5vh auto;
    gap: 10px;
}

    .partner-logos img {
        width: 32vh;
        min-width:120px;
        height: 8vh;
        min-height:30px;
        object-fit: contain;
        filter: grayscale(30%);
        transition: filter .2s;
    }
        .partner-logos img:hover {
            filter: none;
        }

/* 数据统计 区 */
.stat-section {
    width: 80%;
    margin: 0 auto ;
    text-align: center;
}

.stat-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 48px; /* 字体大小 */
    color: #002F41; /* 备用颜色 */
    background: linear-gradient(145deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
    -webkit-background-clip: text; /* 仅裁剪文字部分 */
    -webkit-text-fill-color: transparent; /* 填充文字为透明 */
}

.stat-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10vh;
    gap: 10px;
}

.stat-block {
    flex: 1;
    font-size: 30px;
    font-weight: 700;
    color: #002F41;
}
    .stat-block p {
        font-size: 18px;
        opacity: 0.4;
        margin-top: 4px;
    }
    .stat-block small {
        font-size: 20px;
        margin-left: 6px;
        color: #2A9FD1;
        font-weight: normal;
    }

.gradient-text {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif; /* 字体 */
    background: linear-gradient(145deg, #1B4EA0 20%, #2A9FD1 100%);  /*渐变背景 */
    -webkit-background-clip: text; /* 仅裁剪文字部分 */
    -webkit-text-fill-color: transparent; /* 填充文字为透明 */
}


.stat-network {
    width: 100%;
}

.case-bg {
    width: 100%;
    height: 80vh;
    margin-top: 15vh;
    position: relative;
    overflow: hidden;
}

.case-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.case-first-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-second-img {
    position: absolute;
    top: 0;
    left: 30%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1); /* 旋转 180° */

}

.case-title {
    width: 70vh;
    min-width:550px;
    height: 35vh;
    margin-left:14%;
    z-index: 1;
    display: flex;
    align-items: center;
}
    .case-title h1 {
        font-weight: 700;
        color: #127CBE;
        font-size: 48px;
        margin-bottom:3vh;
        font-family: 'Roboto', sans-serif; /* 字体 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }

    .case-desc {
        font-size: 24px;
        line-height: 1.6;
        color: #002F41;
        opacity: 0.4;
    }

.case-logo-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #002F41;
    opacity: 0.6;
}

.case-carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
}

    .case-carousel button {
        width: 50px;
        height: 50px;
        padding: 0;
        border: none;
        background: rgba(255,255,255,0.8);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

.case-client {
    width: 100%;
    height: 68px;
    margin: 0 auto;
}
    .case-client img:nth-child(1) {
        opacity: 1; /* 透明度40% */
        width: 180px;
        object-fit: contain;
        
    }
    .case-client img:nth-child(2) {
        opacity: 0.6; /* 透明度40% */
        width: 180px;
        margin-left:6vh;
        object-fit: contain;
    }
    .case-client img:nth-child(3) {
        opacity: 0.2; /* 透明度40% */
        width: 180px;
        margin-left: 6vh;
        object-fit: contain;
    }

/* 新闻 区 */
.news-section {
    width: 74%;
    margin: 0 auto;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: #1B1F31;
    text-align: center;
    margin: 8vh 0;
}
    .news-title h1 {
        font-size: 60px;
        font-weight: 700;
        color: #18396b;
        text-align: left;
    }

    .news-title h2 {
        font-size: 48px;
        font-weight: 700;
        color: #18396b;
        text-align: left;
    }

.news-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* 水平平均分布 */
    gap:36px;
}

.news-card {
    min-width: 300px;
    width: 50vh;
    height: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(120,160,200,0.09);
    margin-bottom:36px;
}

.news-img {
    display: block;
    justify-content:center;
    width: 92%;
    margin: 2vh;
    border-radius: 16px;
    object-fit: cover;
}

.news-content {
    padding: 0 2vh;
}

.news-title-card {
    font-size: 18px;
    font-weight: 700;
    color: #1B1F31;
    height: 56px;
}

.news-date {
    font-size: 14px;
    color: #88A;
    float: right;
    opacity: 0.6;
    margin-bottom:1vh;
}

.news-btn-area {
    text-align: center;
    padding: 5vh;
}

.news-btn {
    background: none;
    color: #127CBE;
    border: 1.5px solid #127CBE;
    border-radius: 24px;
    padding: 8px 34px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

    .news-btn img {
        height: 16px;
    }

    .news-btn:hover {
        background: #127CBE;
        color: #fff;
    }

.more {
    text-align: center;
    margin: 42px 0;
}

    .more a {
        color: #218dff;
        font-size: 16px;
        letter-spacing: 1px;
    }

        .more a:hover {
            text-decoration: underline;
        }

/* 底部 CTA */
.bottom-cta {
    width: 74%;
    padding: 10vh 0;
    text-align: center;
    border-radius: 20px;
    margin: 8vh auto;
}

.bottom-cta-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 28px;
}


.bottom-cta-btn {
    margin-top: 38px;
    background-color: #fff; /* 背景颜色改为白色 */
    border: none;
    border-radius: 28px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background .2s, color .2s; /* 添加颜色过渡效果 */
}
    .bottom-cta-btn span {
        color: #002F41; /* 备用颜色 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }
    .bottom-cta-btn img {
        height: 24px;
        display: inline-block;
    }

    .bottom-cta-btn:hover {
        color: blue; /* 字体颜色改为白色 */
        background-color:floralwhite
    }